home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga CD-ROM Collection
/
Amiga CD-ROM Collection - Auge 4000 and Cactus and Demo Util.iso
/
auge4000
/
46
/
lib
/
fd
/
creat.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-06-20
|
174b
|
17 lines
/*
* CREAT.C
*
* creat(name, prot) (prot ignored)
*/
#include <fcntl.h>
int
creat(name)
char *name;
{
return(open(name, O_CREAT | O_TRUNC | O_RDWR, 0666));
}